home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d15
/
mewin.arc
/
FUNC.CMD
< prev
next >
Wrap
OS/2 REXX Batch file
|
1991-03-12
|
630b
|
26 lines
; FUNC.CMD Allow mainframes to simulate function
; keys with ^C<n> and ^C shifted-<n>
; Also allow the ` key to be META as well as ESC
bind-to-key execute-macro-21 ^C
bind-to-key meta-prefix `
21 store-macro
!if ¬ $pending
write-message "FN-"
!endif
set %rcchar >key
set %rcchar &sindex "1234567890!@#$%^&*()" %rcchar
!if &equ %rcchar 0
write-message "[Not Bound]"
!return
!endif
clear-message-line
set %rctmp "FN"
!if &gre %rcchar 10
set %rctmp &cat "S-" %rctmp
!endif
set %rcchar &mid "12345678901234567890" %rcchar 1
execute-command-line &bind &cat %rctmp %rcchar
!endm